@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f7fa;
    color: #333;
    line-height: 1.6;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: background-color 0.3s;
}

header:hover {
    background-color: rgba(255, 255, 255, 1);
}

.logo {
    font-size: 2.5em;
    color: #333;
    cursor: pointer;
    font-weight: 700;
}

.logo span {
    color: #2980b9;
}

.navigation {
    display: flex;
    gap: 30px;
}

.navigation a {
    font-size: 1.1em;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navigation a:hover {
    color: #fff;
    background-color: #2980b9;
    transform: scale(1.1);
}

.home {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-direction: row;
    gap: 50px;
    text-align: center;
    color: #fff;
}

.content {
    text-align: justify;
    max-width: 700px;
    color: #000;
    z-index: 10;
    font-weight: 500;
    margin-top: 5%;
}

.content h2 {
    font-size: 3.5em;
    color: #000;
    margin-bottom: 10px;
}

.content h2 span {
    color: #2980b9;
}

.content h4 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #000;
    font-weight: bold;
}

.content p {
    font-size: 1.3em;
    margin: 10px 0 40px;
    color: #000;
    line-height: 1.6;
    max-width: 600px;
}

.image-container {
    max-width: 500px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.image-container img {
    width: 90%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 6%;
}

.image-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.social-icons {
    position: absolute;
    bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #2980b9;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    border: 1px solid #fff;
    outline: 2px solid #2980b9;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
    background-color: #2980b9;
}

.social-icons a i {
    color: #fff;
    font-size: 1.3em;
}

footer {
    background: rgb(128, 146, 171);
    color: #000;
    padding: 20px;
    text-align: center;
    font-size: 1rem;
    margin-top: 5px;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer .footer-content p {
    margin: 5px 0;
    font-weight: 300;
}

@media (max-width: 768px) {
    .home {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .content {
        text-align: center;
        padding: 20px;
    }

    .content h2 {
        font-size: 2.5em;
    }

    .content h4 {
        font-size: 2em;
    }

    .content p {
        font-size: 1.1em;
    }

    .image-container img {
        width: 80%;
        margin: 20px 0;
    }

    .social-icons {
        position: relative;
        bottom: 0;
    }
}
